home *** CD-ROM | disk | FTP | other *** search
/ Best of Shareware / Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso / mac / ZIPPED / WINDOWS / EDUCATON / WINT_T.ZIP / READ.ME < prev    next >
Text File  |  1992-07-07  |  4KB  |  98 lines

  1. READ.ME
  2.  
  3.                                 ZVIEW.EXE
  4.                                 =========
  5.  
  6.                         The ZiffNet Viewer Utility
  7.                         ==========================
  8.  
  9.  
  10. ADDITIONAL COMMANDS
  11. ===================
  12.  
  13. Two additional quick-key commands are now available: Alt-E (Expand All) and 
  14. Alt-A (Collapse All). These are shown on the Tree (Alt-T) pull-down menu and 
  15. in the ZVIEW.ZDG documentation file but are not mentioned in Quick Help (F1). 
  16. These two commands Expand All or Collapse All headings, respectively, in the 
  17. Table of Contents screen.
  18.  
  19.  
  20. COLOR SELECTION AND *.INI FILES
  21. ===============================
  22.  
  23. ZVIEW will automatically detect the presence of a color or monochrome display 
  24. adapter and will default to a basic color scheme for both types of displays. 
  25. However, ZVIEW may get confused by laptop LCD screens or by other hybrid video 
  26. systems (eg. AT&T's 640x400 gray-scale display used on the PC6300 series), and 
  27. you may also wish to change ZVIEW's default color scheme.
  28.  
  29. ZVIEW uses a file called ZVIEW.INI to store color configuration information. 
  30. This file is created the first time you use the Options, Color menu choice and 
  31. hit Enter or click on [Ok] to exit from the color selection dialog box. If you 
  32. don't make any changes, the resulting ZVIEW.INI file will contain the default 
  33. settings. If you ESCape from the dialog box, the ZVIEW.INI will not be created 
  34. or re-written. ZVW.EXE includes several sample *.INI files. 
  35.  
  36.      LCDMONO.INI    - sample configuration for gray-scale LCD screens
  37.      ATTMONO.INI    - sample configuration for AT&T PC6300 monochrome screens
  38.      HGCMONO.INI    - sample configuration for IBM MDA/Hercules displays
  39.      COLOR1.INI     - sample configuration for color systems (default setting)
  40.      COLOR2.INI     - sample configuration for color (alternative setting)
  41.  
  42. To try out one of these sample files, COPY (don't rename!) the file you want 
  43. to the configuration filename - ZVIEW.INI. Then load ZVIEW and check the 
  44. results.
  45.  
  46. You can modify the colors using the Options, Color pull-down menu and save the 
  47. results by pressing Enter to close the dialog box. Then exit and restart ZVIEW 
  48. to see the changes. Because ZVIEW always modifies the same file -- ZVIEW.INI, 
  49. copy this file to a new filename to save the configuration when you arrive at 
  50. a color combination you like.
  51.  
  52. If your system has a color adapter and a monochrome monitor and the default 
  53. display settings are unsatisfactory, you may want to tell ZVIEW that you are 
  54. using a monochrome display. You can do this by setting an environment variable 
  55. in DOS. The command syntax is:
  56.  
  57. SET PNLMONO=Y
  58.  
  59. Use all capital letters. Try this in conjunction with the HGCMONO.INI settings 
  60. for best results. You can test this on a color monitor, as well.
  61.  
  62. To return ZVIEW to auto-detection mode, just eliminate the DOS environment 
  63. variable. Type:
  64.  
  65. SET PNLMONO=
  66.  
  67. This will erase the variable from memory. You can add the SET command to your 
  68. AUTOEXEC.BAT file if you always want ZVIEW to use the monochrome mode.
  69.  
  70. You could use a batch file to start ZVIEW with your special configuration file 
  71. and/or set the PNLMONO environment variable. The batch file might look like 
  72. this (comments in parenthesis -- don't include them in the actual batch 
  73. file!):
  74.  
  75. @echo off           (Don't display commands)
  76.  
  77. cd\zview            (Change to the ZVIEW subdirectory on the current drive)
  78.  
  79. SET PNLMONO=Y       (Set ZVIEW to use a monochrome display)
  80.  
  81. copy FOOBAR.INI ZVIEW.INI > NUL    (Copy your FOOBAR.INI file to ZVIEW.INI and
  82.                                     don't display the "1 file(s) copied"
  83.                                     message.)
  84.  
  85. ZVIEW %1            (Load ZVIEW. Use the "%1" parameter to pass the name of a 
  86.                      *.ZDG file to ZVIEW from the command line. If you include 
  87.                      the name of a *.ZDG file on the command line after the 
  88.                      batch file command, ZVIEW will load that *.ZDG file 
  89.                      automatically. If the batch file is named "MYZVIEW.BAT", 
  90.                      the command "MYZVIEW 386NOT.ZDG" will load the 386NOT.ZDG 
  91.                      Buyers' Digest file directly into ZVIEW from the current 
  92.                      directory.)
  93.  
  94. SET PNLMONO=        (Clear the PNLMONO environment variable from memory)
  95.  
  96.                                   ###
  97.  
  98.